home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / SourceCode / FontChoice / FontChoice.wos < prev   
Text File  |  1996-04-20  |  339b  |  20 lines

  1. ////////////////////////
  2. //  FontChoice
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. id matrixName;
  8. id selectedItem;
  9. id fontChoices;
  10. id borderSize;
  11. id isVertical;
  12.  
  13. - awake
  14. {
  15.     matrixName = @"UserShouldProvide";
  16.     selectedItem = @"3";
  17.     borderSize = 1;
  18.     isVertical = NO;
  19.     fontChoices = @("1", "2", "3", "4", "5", "6", "7");
  20. }